/* The page is NOT responsive. You can implement responsiveness yourself if you wanna have some fun 😃 */

:root {
  --color-primary: #86aca2;
  --color-secondary: #e0927d;
  --color-tertiary: #bbb6b8;
  --color-primary-darker: #87a59d;
  --color-secondary-darker: #d58d79;
  --color-tertiary-darker: #ada9ab;
  --color-primary-opacity: #5ec5763a;
  --color-secondary-opacity: #ffcd0331;
  --color-tertiary-opacity: #ff58602d;
  --gradient-primary: linear-gradient(to top left, #39b385, #9be15d);
  --gradient-secondary: linear-gradient(to top left, #ffb003, #ffcb03);
  --color-primary-dark: #4f6b61;
  --color-primary-dark-hover: #405a51;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #444;
  line-height: 1.9;
  background-color: #f3f3f3;
}
@font-face {
  font-family: "Josefin Sans";
  src: url("../josefin-sans/JosefinSans-Light.ttf");
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f0f0f2;
}

::-webkit-scrollbar-thumb {
  background: #86aca2;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #70a19a;
}
/* GENERAL ELEMENTS */

.section {
  padding: 10rem 3rem;
  border-top: 1px solid #ddd;

  transition: transform 1.5s, opacity 1s;
}

.section--hidden {
  opacity: 0;
  transform: translateY(8rem);
}

.section__title {
  max-width: 80rem;
  margin: 0 auto 8rem auto;
}

.section__description {
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 2rem;
  text-align: center;

}

.section__header {
  font-size: 4rem;
  line-height: 1.3;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  background-color: var(--color-primary);
  font-size: 1.6rem;
  font-family: inherit;
  font-weight: 500;
  border: none;
  padding: 1.25rem 4.5rem;
  border-radius: 10rem;
  cursor: pointer;
  transition: all 0.3s;
}
.operation__img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.btn:hover {
  background-color: var(--color-primary-darker);
}

.btn--text {
  font-size: 16px;
  line-height: 45px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #ffffff;
  background: #000000;
  padding: 0px 25px 0px 25px;
  margin: 0px 0px 0px 0px;
  overflow: hidden;
}

p {
  color: #666;
}
@keyframes nav-animation {
  0% {
    transform: translateY(-120);
  }
  100% {
    transform: translateY(120);
  }
}

/* This is BAD for accessibility! Don't do in the real world! */
button:focus {
  outline: none;
}

img {
  transition: filter 0.5s;
}

.lazy-img {
  filter: blur(20px);
}

/* NAVIGATION */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 9rem;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  animation-duration: 2s;
}
.nav p{
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

.nav__actions {
  display: flex;
  align-items: center;
  column-gap: 1.4rem;
}

.nav__responsive__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.6rem;
  width: 4.6rem;
  border-radius: 50%;
  border: 1px solid #e2e2e2;
  background-color: #fff;
  color: #222;
  cursor: pointer;
  transition: all 0.3s; 
  display: none;
}

.nav__responsive__btn:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary-opacity, #f2f6f5);
}

/* nav and stickly class at the same time */
.nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.95);
  overflow: hidden;
  padding: 0 8rem;
}

.nav__logo {
  height: 4.5rem;
  transition: all 0.3s;
}

.nav__links {
  display: flex;
  align-items: center;
  list-style: none;
  transition: all 0.9s;
  color: #fff;
}

.nav__item {
  margin-left: 4rem;
}

.nav__item:first-child {
  margin-left: 0;
}

.nav__link:link,
.nav__link:visited {
  font-size: 1.6rem;
  font-weight: 400;
  color: inherit;
  text-decoration: none;
  display: block;
  transition: all 0.3s;
  color: #333;
}

.nav__link:hover {
  color: var(--color-primary-dark);
}

.nav__link--btn:link,
.nav__link--btn:visited {
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  padding: 1.1rem 2.6rem;
  border-radius: 9999px;
  background-color: var(--color-primary-dark);
  color: #fff;
  transition: all 0.3s;
}

.nav__link--btn:hover,
.nav__link--btn:active {
  background-color: var(--color-primary-dark-hover);
  color: #fff;
}

/* HERO */
.header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem 0 6rem;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.header__title {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  column-gap: 4rem;
  width: 100%;
  padding: 2rem 0 4rem;
}

.hero__content {
  flex: 0 1 42%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 2.2rem;
}

.hero__subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  margin: 0;
}

h1.hero__heading {
  font-family: "Poppins", sans-serif;
  font-size: 7.6rem;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0;
  color: #222;
}

.hero__text {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  max-width: 36rem;
  margin: 0;
  color: #999;
}

.hero__buttons {
  display: flex;
  align-items: center;
  column-gap: 1.6rem;
  margin-top: 0.6rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  padding: 1.5rem 3rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.hero-btn--primary {
  background-color: var(--color-primary-dark);
  color: #fff;
  border: 1px solid var(--color-primary-dark);
}

.hero-btn--primary:hover {
  background-color: var(--color-primary-dark-hover);
  border-color: var(--color-primary-dark-hover);
  transform: translateY(-2px);
}

.hero-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.hero-btn__icon svg {
  height: 1.6rem;
  width: 1.6rem;
}

.hero-btn--primary:hover .hero-btn__icon {
  transform: translateX(4px);
}

.hero-btn--secondary {
  background-color: #fff;
  color: #222;
  border: 1px solid var(--color-primary);
}

.hero-btn--secondary:hover {
  background-color: rgba(134, 172, 162, 0.12);
  border-color: var(--color-primary-dark);
}

.hero__features {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  column-gap: 1.4rem;
  list-style: none;
  margin-top: 1.4rem;
  padding-top: 2.4rem;
  border-top: 1px solid #e6e6e6;
  width: 100%;
}

.hero__feature {
  display: flex;
  align-items: flex-start;
  column-gap: 0.7rem;
  min-width: 0;
}

.hero__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 2.8rem;
  width: 2.8rem;
  border-radius: 50%;
  background-color: rgba(134, 172, 162, 0.12);
  color: var(--color-primary-dark);
}

.hero__feature-icon svg {
  height: 1.4rem;
  width: 1.4rem;
}

.hero__feature-text {
  display: flex;
  flex-direction: column;
  row-gap: 0.2rem;
  min-width: 0;
}

.hero__feature-text strong {
  font-size: 1.2rem;
  font-weight: 500;
  color: #222;
  white-space: nowrap;
}

.hero__feature-text small {
  font-size: 1.05rem;
  font-weight: 400;
  color: #999;
  white-space: nowrap;
}

.hero__image {
  flex: 0 0 55%;
  align-self: stretch;
  overflow: hidden;
  border-radius: 3rem;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  border-radius: 3rem;
  display: block;
}

/* HERO ANIMATIONS */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(2.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

.hero__subtitle {
  animation: heroFadeUp 0.8s ease both;
}

h1.hero__heading {
  animation: heroFadeUp 0.8s ease 0.1s both;
}

.hero__text {
  animation: heroFadeUp 0.8s ease 0.2s both;
}

.hero__buttons {
  animation: heroFadeUp 0.8s ease 0.3s both;
}

.hero__features {
  animation: heroFadeUp 0.8s ease 0.4s both;
}

.hero__image {
  animation: heroFadeUp 0.9s ease 0.2s both;
}

.hero__img {
  animation: heroImageZoom 1.4s ease both;
}

/* FEATURES */
.features {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin: 0 12rem;
}

.features__img {
  width: 100%;
}
.features__im__container {
  width: 50%;
  background-color: #f3f3f3;
}
.features__row {
  display: flex;
  background-position: center;
  background-size: cover;
  align-items: stretch;
}
.features__feature {
  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;
  width: 50%;
  font-size: 1.5rem;
}

.features__row:nth-child(1) {
  background-image: url(../img2/banner-21.webp);
}
.features__row:nth-child(2) {
  background-image: url(../img2/banner-24.webp);
}

.features__icon svg {
  height: 2.5rem;
  width: 2.5rem;
  fill: var(--color-primary);
}

.features__header {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  letter-spacing: 3px;
  margin: 0px 0px 10px 0px;
  color: #917860;
}
.features__txt {
  font-size: 45px;
  line-height: 55px;
  font-weight: 500;
  letter-spacing: 0px;
  margin: 0px 0px 15px 0px;
  text-align: center;
  color: #000000;
}

/* WHY CHOOSE US */
#why-choose-us {
  padding: 7rem 3rem;
}

#why-choose-us .section__title {
  margin-bottom: 4.5rem;
}

.why-us {
  display: flex;
  justify-content: center;
  max-width: 130rem;
  margin: 0 auto;
}

.why-us__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 4.5rem;
  border-left: 1px solid #e6e6e6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us__card:first-child {
  border-left: none;
}

.why-us__card:hover {
  transform: translateY(-1rem);
}

.why-us__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 9rem;
  width: 9rem;
  border-radius: 50%;
  background-color: var(--color-primary-opacity);
  color: var(--color-primary-darker);
  margin-bottom: 2.8rem;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.why-us__card:hover .why-us__icon {
  background-color: var(--color-primary);
  color: #fff;
  transform: scale(1.08);
}

.why-us__icon svg {
  height: 3.6rem;
  width: 3.6rem;
}

.why-us__title {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 1.4rem;
  color: #222;
}

.why-us__text {
  font-size: 1.65rem;
  line-height: 1.65;
  max-width: 27rem;
}

/* HOW IT WORKS */
#how-it-works {
  padding: 8rem 3rem ;
}

#how-it-works .section__title {
  margin-bottom: 7.5rem;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 124rem;
  margin: 0 auto;
}

.steps__step {
  display: flex;
  align-items: flex-start;
  column-gap: 1.8rem;
  flex: 0 1 40rem;
}

.steps__marker {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.steps__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.6rem;
  width: 5.6rem;
  border-radius: 50%;
  background-color: var(--color-primary-darker);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  flex-shrink: 0;
}

.steps__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.6rem;
  width: 5.6rem;
  border-radius: 50%;
  background-color: var(--color-primary-opacity);
  color: var(--color-primary-darker);
  margin-left: -1.6rem;
  border: 4px solid #fff;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.steps__step:hover .steps__icon {
  transform: scale(1.08);
}

.steps__icon svg {
  height: 2.5rem;
  width: 2.5rem;
}

.steps__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.steps__title {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: #222;
}

.steps__text {
  font-size: 1.55rem;
  line-height: 1.6;
  max-width: 27rem;
}

.steps__connector {
  flex: 0 1 9rem;
  min-width: 5rem;
  align-self: flex-start;
  margin-top: 2.7rem;
  border-top: 2px dotted #c7c7c7;
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

/* OPERATIONS */
.operations {
  max-width: 100rem;
  margin: 12rem auto 0 auto;

  background-color: #fff;
}

.operations__tab-container {
  display: flex;
  justify-content: center;
 
  background-color: #F7F4EF ;
}

.operations__tab {
  margin-right: 2.5rem;
  transform: translateY(-50%);
}

.operations__tab span {
  margin-right: 1rem;
  font-weight: 600;
  display: inline-block;
}

.operations__tab--1 {
  background-color: var(--color-secondary);
}

.operations__tab--1:hover {
  background-color: var(--color-secondary-darker);
}

.operations__tab--3 {
  background-color: var(--color-tertiary);
  background-color: #bbb6b8;
  margin: 0;
}

.operations__tab--3:hover {
  background-color: var(--color-tertiary-darker);
}

.operations__tab--active {
  transform: translateY(-66%);
}

.operations__content {
  display: none;

  /* JUST PRESENTATIONAL */
  font-size: 1.7rem;
  padding: 2.5rem 7rem 6.5rem 7rem;
}

.operations__content--active {
  display: grid;
  grid-template-columns: 7rem 1fr;
  column-gap: 3rem;
  row-gap: 0.5rem;
}

.operations__header {
  font-size: 2rem;
  font-weight: 500;
  /* align-self: center; */
}

.operations__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
}

.operations__icon svg {
  height: 2.75rem;
  width: 2.75rem;
}

.operations__content p {
  grid-column: 2;
  
}

.operations__icon--1 {
  background-color: var(--color-secondary-opacity);
}
.operations__icon--2 {
  background-color: var(--color-primary-opacity);
}
.operations__icon--3 {
  background-color: var(--color-tertiary-opacity);
}
.operations__icon--1 svg {
  fill: var(--color-secondary-darker);
}
.operations__icon--2 svg {
  fill: var(--color-primary);
}
.operations__icon--3 svg {
  fill: var(--color-tertiary);
}

/* OPERATIONS - CONTENT 1 SPLIT HERO REDESIGN */
.operations__content.operations__content--active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  min-height: 58rem;
  padding: 6rem 4rem 6rem 6.5rem;
  row-gap: 2rem;
  
  background-size: contain;
  background-position: right;
}
.operations__content--1.operations__content--active{
  background-image: url(../img2/no-one.png);
}
.operations__content--2{
  background-image: url(../img2/two.png);
}
.operations__content--3{
  background-image: url(../img2/three.png);
}

.operations__content.operations__content--active .operations__icon--1 {
  display: none;
}

.operations__content.operations__content--active::before {
  content: "";
  position: absolute;
  inset: 0;
  top: -2px;
  background-color: #f7f4ef;
  clip-path: path("M 0,0 L 450,0 C 460,0 600,80 570,220 C 530,380 430,480 435,600 L 0,600 Z");
  z-index: 0;
}

.operations__content.operations__content--active .operations__header,
.operations__content.operations__content--active > p {
  position: relative;
  z-index: 1;
  grid-column: unset;
  max-width: 38rem;
}

.operations__content.operations__content--active .operations__header {
  font-size: 3.4rem;
  line-height: 1.25;
  font-weight: 600;
  margin: 0;
}

.operations__content.operations__content--active > p {
  font-size: 1.7rem;
  line-height: 1.8;
  margin: 0;
}

/* SLIDER */
.slider {
  max-width: 100rem;
  height: 50rem;
  margin: 0 auto;
  position: relative;
  background-color: #86aca2a9;
  background-image: url(../img2/Newsletter.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  /* IN THE END */
  overflow: hidden;
  z-index: 9;
}
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #2f2a2a33;
  z-index: -1;
}

.slide {
  position: absolute;
  top: 0;
  width: 100%;
  height: 50rem;
  display: flex;
  align-items: center;
  justify-content: center;

  /* THIS creates the animation! */
  transition: transform 1s;
}

.slide > img {
  /* Only for images that have different size than slide */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider__btn {
  position: absolute;
  top: 50%;
  z-index: 10;

  border: none;
  background: rgba(255, 255, 255, 0.7);
  font-family: inherit;
  color: #333;
  border-radius: 50%;
  height: 5.5rem;
  width: 5.5rem;
  font-size: 3.25rem;
  cursor: pointer;
}

.slider__btn--left {
  left: 6%;
  transform: translate(-50%, -50%);
}

.slider__btn--right {
  right: 6%;
  transform: translate(50%, -50%);
}

.dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.dots__dot {
  border: none;
  background-color: #f3eded;
  opacity: 0.7;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  margin-right: 1.75rem;
  cursor: pointer;
  transition: all 0.5s;

  /* Only necessary when overlying images */
  /* box-shadow: 0 0.6rem 1.5rem rgba(0, 0, 0, 0.7); */
}

.dots__dot:last-child {
  margin: 0;
}

.dots__dot--active {
  /* background-color: #fff; */
  background-color: #888;
  opacity: 1;
}

/* TESTIMONIALS */
.testimonial {
  width: 65%;
  position: relative;
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -5.7rem;
  left: -6.8rem;
  line-height: 1;
  font-size: 20rem;
  font-family: inherit;
  color: var(--color-primary);
  z-index: -1;
}

.testimonial__header {
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.testimonial__text {
  font-size: 1.7rem;
  margin-bottom: 3.5rem;
  color: #302e2e;
}

.testimonial__author {
  margin-left: 3rem;
  font-style: normal;

  display: grid;
  grid-template-columns: 6.5rem 1fr;
  column-gap: 2rem;
}



.testimonial__name {
  font-size: 1.7rem;
  font-weight: 500;
  align-self: end;
  margin: 0;
}

.testimonial__location {
  font-size: 1.5rem;
}

.section__title--testimonials {
  margin-bottom: 4rem;
}

/* SIGNUP */
.section--sign-up {
  background-color: #37383d;
  border-top: none;
  border-bottom: 1px solid #444;
  text-align: center;
  padding: 10rem 3rem;
  position: relative;
  overflow: hidden;
}

.section--sign-up::before,
.section--sign-up::after {
  content: "";
  position: absolute;
  bottom: -20rem;
  width: 40rem;
  height: 40rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.section--sign-up::before {
  left: -20rem;
}

.section--sign-up::after {
  right: -20rem;
}

.section--sign-up .section__header {
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section--sign-up .section__title {
  margin-bottom: 6rem;
}

.section--sign-up .btn {
  font-size: 1.9rem;
  padding: 2rem 5rem;
  position: relative;
  z-index: 1;
}

/* FOOTER */
.footer {
  background-color: #37383d;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 4rem;
  row-gap: 4.5rem;
  max-width: 120rem;
  margin: 0 auto;
  padding: 8rem 3rem 6rem;
}

.footer__brand {
  flex: 0 1 22rem;
  justify-content: center;
  text-align: center;
}
.footer__brand p{
  color: #aaa;
  font-size: 2rem;
 
}
.footer__col {
  flex: 0 1 16rem;
}

.footer__col-title {
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  margin: 0 0 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

.footer__col-list {
  list-style: none;
}

.footer__col-list .footer__item {
  margin-right: 0;
  margin-bottom: 1.2rem;
}

.footer__col-list .footer__item:last-child {
  margin-bottom: 0;
}

.footer__item {
  margin-right: 4rem;
}

.footer__link {
  font-size: 1.6rem;
  color: #eee;
  text-decoration: none;
  transition: color 0.3s;
}

.footer__col-list .footer__link {
  font-size: 1.5rem;
  color: #ccc;
}

.footer__link:hover {
  color: var(--color-primary);
}

.footer__logo {
  width: 10rem;
  height: 5rem;
  display: block;
  margin: auto;
}

.footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 2rem;
  padding: 3rem;
  border-top: 1px solid #444;
}

.footer__copyright {
  font-size: 1.4rem;
  color: #aaa;
  text-align: left;
  margin: 0;
}

.footer__mark {
  height: 3rem;
  justify-self: center;
}

.footer__bottom-nav {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  column-gap: 2.5rem;
  justify-self: end;
}

.footer__bottom-nav .footer__item {
  margin: 0;
}

.footer__bottom-nav .footer__link {
  font-size: 1.4rem;
}

/* MODAL WINDOW */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90rem;
  background-color: #f3f3f3;
  padding: 5rem 6rem;
  box-shadow: 0 4rem 6rem rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.5s;
  display: flex;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 100;
  transition: all 0.5s;
}
.modal__info {
  width: 50%;
  padding-right: 30px;
  font-family: "Josefin Sans", sans-serif;
}
.modal__info h2 {
  font-size: 3rem;
  color: #000;
  margin-bottom: 15px;
}
.modal__info p {
  font-size: 1.4rem;
  color: #868686;
  margin-bottom: 15px;
  line-height: 1.5;
}
.modal form {
  position: relative;
}
.modal__info input[type="email"] {
  border: 1px solid gray;
  padding: 0 20px;
  background: transparent;
  line-height: 50px;
  height: 50px;
  width: 100%;
  color: gray;

  border-radius: 0;
}
.modal__info input[type="submit"] {
  position: absolute;
  background: #000;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  padding: 0 20px;

  line-height: 50px;
  height: 50px;
  font-size: 12px;
  color: #fff;
  text-wrap: nowrap;

  cursor: pointer;
}
.modal__img {
  width: 50%;
  background-image: url(../img2/banner-38.webp);
  background-position: top;
  background-size: contain;

  height: 300px;
}

.modal__form button {
  grid-column: 1 / span 2;
  justify-self: center;
  margin-top: 1rem;
}

.btn--close-modal {
  font-family: inherit;
  color: inherit;
  position: absolute;
  top: 0.5rem;
  right: 2rem;
  font-size: 4rem;
  cursor: pointer;
  border: none;
  background: none;
}

.hidden {
  visibility: hidden;
  opacity: 0;
}

/* COOKIE MESSAGE */
.cookie-message {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  background-color: white;
  color: #bbb;
  font-size: 1.5rem;
  font-weight: 400;
}
